<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IHMS 75th Alumni Registration</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(to right, #6a11cb, #2575fc);
color: #fff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
background: rgba(255, 255, 255, 0.1);
padding: 30px;
border-radius: 15px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
width: 350px;
text-align: center;
}
h2 {
margin-bottom: 20px;
font-weight: 600;
}
label {
display: block;
text-align: left;
margin: 10px 0 5px;
font-weight: 400;
}
input, textarea {
width: 100%;
padding: 10px;
border: none;
border-radius: 8px;
outline: none;
font-size: 14px;
margin-bottom: 15px;
background: rgba(255, 255, 255, 0.2);
color: #fff;
}
textarea {
resize: none;
}
button {
width: 100%;
padding: 10px;
border: none;
border-radius: 8px;
background: #ff9800;
color: #fff;
font-size: 16px;
cursor: pointer;
transition: background 0.3s;
}
button:hover {
background: #e68900;
}
</style>
</head>